home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python20_Src.lha / Python20_source / Tools / compiler / setup.py < prev   
Encoding:
Python Source  |  2000-10-26  |  210 b   |  10 lines

  1. #!/usr/bin/env python
  2.  
  3. from distutils.core import setup
  4.  
  5. setup(name = "compiler",
  6.       version = "1.0",
  7.       author = "Jeremy Hylton",
  8.       author_email = "jeremy@beopen.com",
  9.       packages = ["compiler"])
  10.